Gets a client view of entities from the specified entitySetName.

Namespace:  C1.Data.Entities
Assembly:  C1.Data.Entity (in C1.Data.Entity.dll)

Syntax

C#
public ClientView<T> GetItems<T>(
	string entitySetName
)
Visual Basic
Public Function GetItems(Of T) ( _
	entitySetName As String _
) As ClientView(Of T)

Parameters

entitySetName
Type: System..::..String
The name of the entity set to load entities from.

Type Parameters

T
The type of entities in the entitySetName.

Return Value

A client view of entities from the specified entitySetName.

See Also